home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / program / assembly / snma-2.lha / SNMA / examples / alias.txt next >
Text File  |  1995-10-08  |  976b  |  41 lines

  1.  
  2.     SNMA arexx aliases
  3.     ~~~~~~~~~~~~~~~~~~
  4.  
  5.     1-jul-94        By Samu Nuojua
  6.  
  7.  
  8.  I have the following aliases defined in my s:shell-startup file to make
  9.  life easier. I suggest you add these or your own if you use snma a lot from
  10.  the shell and in arexx mode.  The macros these aliases call must be
  11.  in rexx: directory.
  12.  
  13. ;-----------------------------------------------
  14. alias asm   rx 'shellasm "[]"'
  15. alias remgb rx 'address SNMA remgb "[]"'
  16. alias addgb rx 'addgb [].glb i "a:include2"'
  17. alias seegb rx seegb
  18. alias quitsnma rx 'address SNMA QUIT'
  19. ;-----------------------------------------------
  20.  
  21.  
  22.   When you type in shell:
  23.  
  24.  asm    <file>
  25.     assembles the file
  26.  
  27.  addgb    <file>
  28.     adds symbols and macros ending ".glb" to the global table by calling
  29.     the addgb.rexx macro
  30.  
  31.  remgb    <name>
  32.     removes one include file from the global table directly calling
  33.     remgb snma arexx command.
  34.  
  35.  seegb
  36.     calls the seegb macro to see what files is in global table.
  37.  
  38.  quitsnma
  39.     signals snma to quit.
  40.  
  41.